home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Disc to the Future 2
/
Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin
/
MAC
/
THINKC
/
4_0
/
NEWTEXTF
/
SOURCE_C
/
CTOC.C
< prev
next >
Wrap
C/C++ Source or Header
|
1990-08-14
|
165b
|
11 lines
#include "MyLibrary.h"
char *CToC (char *sstr, char *dstr)
{char *rstr;
rstr = dstr;
while (*dstr = *sstr)
{++sstr;
++dstr;}
return (rstr);}